相关文章

*   [File systems](/index.php/File_systems "File systems")
*   [fdisk](/index.php/Fdisk "Fdisk")
*   [parted](/index.php/Parted "Parted")
*   [fstab](/index.php/Fstab "Fstab")
*   [LVM](/index.php/LVM "LVM")
*   [Swap](/index.php/Swap "Swap")
*   [Format a device](/index.php/Format_a_device "Format a device")
*   [Arch boot process](/index.php/Arch_boot_process "Arch boot process")
*   [Unified Extensible Firmware Interface](/index.php/Unified_Extensible_Firmware_Interface "Unified Extensible Firmware Interface")

**翻译状态：** 本文是英文页面 [Partitioning](/index.php/Partitioning "Partitioning") 的[翻译](/index.php/ArchWiki_Translation_Team_(%E7%AE%80%E4%BD%93%E4%B8%AD%E6%96%87) "ArchWiki Translation Team (简体中文)")，最后翻译时间：2017-10-12，点击[这里](https://wiki.archlinux.org/index.php?title=Partitioning&diff=0&oldid=488464)可以查看翻译后英文页面的改动。

[分区](https://en.wikipedia.org/wiki/Disk_partitioning "w:Disk partitioning")是将硬盘的可用空间划分为多个可以独立访问的区块。

可以为一个硬盘划分一个或者多个分区。一些场景需要使用多个分区：例如双重或多重启动，使用 [swap](/index.php/Swap "Swap") 分区等。此外，分区也可以从逻辑上隔离数据，例如为音频和视频数据创建单独的分区。下面将会讨论通用的分区方案。

每个分区在使用前需要格式化为 [文件系统](/index.php/File_systems_(%E7%AE%80%E4%BD%93%E4%B8%AD%E6%96%87) "File systems (简体中文)") 。

## Contents

*   [1 分区表](#.E5.88.86.E5.8C.BA.E8.A1.A8)
    *   [1.1 Master Boot Record](#Master_Boot_Record)
        *   [1.1.1 分区表](#.E5.88.86.E5.8C.BA.E8.A1.A8_2)
        *   [1.1.2 引导记录](#.E5.BC.95.E5.AF.BC.E8.AE.B0.E5.BD.95)
    *   [1.2 GUID 分区表](#GUID_.E5.88.86.E5.8C.BA.E8.A1.A8)
    *   [1.3 选择 GPT 还是 MBR](#.E9.80.89.E6.8B.A9_GPT_.E8.BF.98.E6.98.AF_MBR)
    *   [1.4 Btrfs 分区](#Btrfs_.E5.88.86.E5.8C.BA)
    *   [1.5 备份](#.E5.A4.87.E4.BB.BD)
*   [2 分区方案](#.E5.88.86.E5.8C.BA.E6.96.B9.E6.A1.88)
    *   [2.1 单root分区](#.E5.8D.95root.E5.88.86.E5.8C.BA)
    *   [2.2 多分区](#.E5.A4.9A.E5.88.86.E5.8C.BA)
    *   [2.3 挂载点](#.E6.8C.82.E8.BD.BD.E7.82.B9)
        *   [2.3.1 根分区](#.E6.A0.B9.E5.88.86.E5.8C.BA)
        *   [2.3.2 /boot](#.2Fboot)
        *   [2.3.3 /home](#.2Fhome)
        *   [2.3.4 /var](#.2Fvar)
        *   [2.3.5 /tmp](#.2Ftmp)
        *   [2.3.6 Swap](#Swap)
        *   [2.3.7 /data](#.2Fdata)
    *   [2.4 布局示例](#.E5.B8.83.E5.B1.80.E7.A4.BA.E4.BE.8B)
        *   [2.4.1 UEFI/GPT 示例](#UEFI.2FGPT_.E7.A4.BA.E4.BE.8B)
        *   [2.4.2 MBR/BIOS 示例](#MBR.2FBIOS_.E7.A4.BA.E4.BE.8B)
        *   [2.4.3 UEFI 带单独的 /home](#UEFI_.E5.B8.A6.E5.8D.95.E7.8B.AC.E7.9A.84_.2Fhome)
*   [3 分区工具](#.E5.88.86.E5.8C.BA.E5.B7.A5.E5.85.B7)
    *   [3.1 fdisk/gdisk](#fdisk.2Fgdisk)
    *   [3.2 GNU Parted](#GNU_Parted)
*   [4 分区对齐](#.E5.88.86.E5.8C.BA.E5.AF.B9.E9.BD.90)
*   [5 Tips and tricks](#Tips_and_tricks)
    *   [5.1 Converting MBR to GPT](#Converting_MBR_to_GPT)
    *   [5.2 GPT Kernel Support](#GPT_Kernel_Support)
*   [6 参考资料](#.E5.8F.82.E8.80.83.E8.B5.84.E6.96.99)

## 分区表

**Note:** 可以用 `parted */dev/sda* print` 或 `fdisk -l */dev/sda*` 查看当前分区信息，`*/dev/sda*` 是设备名。

分区信息被存放在分区表中。目前有两种主流的模式：传统的 [Master Boot Record](/index.php/Master_Boot_Record "Master Boot Record") 和新的 [GUID Partition Table](/index.php/GUID_Partition_Table "GUID Partition Table")。后者功能更强大，解决了许多MBR的限制。

### Master Boot Record

[Master Boot Record](https://en.wikipedia.org/wiki/Master_boot_record "w:Master boot record") (MBR) 是存储设备最开始的 512 字节。包含操作系统启动加载器和分区表，在 [BIOS](https://en.wikipedia.org/wiki/BIOS "w:BIOS") 系统的 [启动流程](/index.php/Boot_process "Boot process") 中扮演重要角色。请参阅 [Wikipedia:Master boot record#Disk partitioning](https://en.wikipedia.org/wiki/Master_boot_record#Disk_partitioning "wikipedia:Master boot record")。

**Note:** MBR 并不位于某个分区中，而是分区前，设备的最开始部分。无分区设备的启动扇区或分区中的启动扇区被称为 [Volume boot record](https://en.wikipedia.org/wiki/Volume_boot_record "w:Volume boot record")。

#### 分区表

目前有三种分区类型：

*   主分区（Primary）
*   扩展分区（Extended）
    *   逻辑分区（Logical）

**主分区**每个磁盘或者RAID卷上只能有4个，可设置为可启动状态。如果分区方案要求使用4个以上的分区，就需将至少一个分区设置为**扩展分区**,并在上面建立**逻辑分区**。扩展分区可以被看作是容纳逻辑分区的容器。硬盘上最多只能有1个扩展分区。如果磁盘上有1个扩展分区，它也被看作是1个主分区。因此只能另外再建立3个主分区（例如3个主分区加1个扩展分区）。扩展分区内所包含的逻辑分区数量没有限制。如果在双重启动中有Windows，Windows需要占据一个主分区。

通常习惯是创建主分区*sda1*到*sda3*，然后建立一个扩展分区*sda4*。*sda4*中包含*sda5*，*sda6*等逻辑分区。

#### 引导记录

MBR 前面的 446 字节是启动代码区域，在 BIOS 系统中通常包含启动加载器的第一部分。请参阅[Wikipedia:主引导记录](https://en.wikipedia.org/wiki/%E4%B8%BB%E5%BC%95%E5%AF%BC%E8%AE%B0%E5%BD%95 "wikipedia:主引导记录")

### GUID 分区表

GPT方案中只有一种分区类型，**主分区**。磁盘和RAID卷中包含的分区数量没有限制。

[GUID Partition Table](https://en.wikipedia.org/wiki/GUID_Partition_Table "w:GUID Partition Table") (GPT) 是 [Unified Extensible Firmware Interface](/index.php/Unified_Extensible_Firmware_Interface "Unified Extensible Firmware Interface") 标准定义的分区规范。使用 [globally unique identifiers](https://en.wikipedia.org/wiki/Globally_unique_identifier "w:Globally unique identifier") (GUIDs), 或 Linux 中的 UUID 定义分区和 [分区类型](https://en.wikipedia.org/wiki/GUID_Partition_Table#Partition_type_GUIDs "w:GUID Partition Table"). 设计上是为了替换 [#Master Boot Record](#Master_Boot_Record)。

[Wikipedia:GUID磁碟分割表](https://en.wikipedia.org/wiki/GUID%E7%A3%81%E7%A2%9F%E5%88%86%E5%89%B2%E8%A1%A8 "wikipedia:GUID磁碟分割表")

### 选择 GPT 还是 MBR

[GUID Partition Table](/index.php/GUID_Partition_Table "GUID Partition Table") （GPT）是一种更灵活的分区方式。它正在逐步取代[Master Boot Record](/index.php/Master_Boot_Record "Master Boot Record") （MBR）系统。GPT相对于诞生于MS-DOS时代的MBR而言，有许多优点。新版的*fdisk*（MBR）和*gdisk*（GPT）使得使用GPT或者MBR在可靠性和性能最大化上都非常容易。

在做出选择前，需要考虑如下内容：

*   如果使用 GRUB legacy 作为bootloader，必须使用MBR。
*   如果使用传统的BIOS，并且双启动中包含 Windows （无论是32位版还是64位版），必须使用MBR。
*   如果使用 [UEFI](/index.php/UEFI "UEFI") 而不是BIOS，并且双启动中包含 Windows 64位版，必须使用GPT。
*   非常老的机器需要使用 MBR，因为 BIOS 可能不支持 GPT.
*   如果不属于上述任何一种情况，可以随意选择使用 GPT 还是 MBR。由于 GPT 更先进，建议选择 GPT。
*   建议在使用 [UEFI](/index.php/Unified_Extensible_Firmware_Interface "Unified Extensible Firmware Interface") 的情况下选择 GPT，因为有些 UEFI firmware 不支持从 MBR 启动。

**注意:** 为了使 GRUB 从一台有 GPT 分区的基于 BIOS 的系统上启动，需要创建一个 [BIOS 启动分区](/index.php/GRUB#GUID_Partition_Table_.28GPT.29_specific_instructions "GRUB"), 这个分区和 /boot 没关系，仅仅是 GRUB 使用，不要建立文件系统和挂载。

### Btrfs 分区

Btrfs可以独占整个存储设备并替代 [MBR](/index.php/MBR "MBR") 和 [GPT](/index.php/GPT "GPT") 分区方案。请参考[Btrfs Partitioning](/index.php/Btrfs#Partitioning "Btrfs")以获取更多信息。

[Wikipedia:Btrfs](https://en.wikipedia.org/wiki/Btrfs "wikipedia:Btrfs")

### 备份

请参阅 [fdisk#Backup and restore partition table](/index.php/Fdisk#Backup_and_restore_partition_table "Fdisk")。

## 分区方案

虽然有一些关于分区方案的通用建议，但没有严格的准则。有许多影响分区方案的因素，例如对灵活性的期望，访问速度，安全性以及可用磁盘空间的硬性限制。实际上就是个人取舍的问题。如果你想双启动 Arch Linux 和 Windows，请参考 [Windows and Arch Dual Boot](/index.php/Windows_and_Arch_Dual_Boot "Windows and Arch Dual Boot")。

**警告:** 请别忘记为boot-loader预留空间。这对于 MBR 和 GRUB-Legacy 来说不是问题，但是许多新方案可能要求占用一个特殊的小分区。

*   [UEFI](/index.php/UEFI "UEFI")系统需要有 [ESP](/index.php/EFI_system_partition "EFI system partition") 分区
*   在 [BIOS](/index.php?title=BIOS&action=edit&redlink=1 "BIOS (page does not exist)") 系统上使用 [GPT](/index.php/GPT "GPT") 进行分区后，安装 GRUB 时会需要一个额外的 BIOS 启动分区。
*   如果使用的是 [Btrfs](/index.php/Btrfs "Btrfs"), 可以将子卷视为分区，请参考 [Btrfs#Mounting subvolumes](/index.php/Btrfs#Mounting_subvolumes "Btrfs").

### 单root分区

这种是最简单，同时也能满足大部分应用场景的方案。如果需要的话，可以建立一个 [swapfile](/index.php/Swapfile "Swapfile")。通常刚开始的时候建议一个单独的 `/` 分区，然后根据应用场景的需要，例如 RAID，加密，独立的多媒体分区等建立其他的分区。

### 多分区

将某个路径挂载为独立分区可以使其拥有不同的文件系统和挂载参数。某些情况下（例如多媒体文件分区），可以被多个操作系统共享。

### 挂载点

下面这些路径可以作为独立分区的挂载点，你也可以根据实际需要做出其他决定。[file-hierarchy(7)](https://jlk.fjfi.cvut.cz/arch/manpages/man/file-hierarchy.7) 介绍了各个目录的作用。

#### 根分区

根目录是目录树的顶层，这里是主文件系统挂载和其他文件系统挂靠的地方。所有文件和目录都在根目录 `/` 显示，即使它们实际上存储在其他的物理设备上。根文件系统中的内容应该足以启动、恢复、修复系统。因此 `/` 目录下的特定目录是不能作为独立分区的。

`/` 分区或叫根分区是最重要而且必需的，需要最先挂载，其他其他分区可以被它取代。

**警告:** 与系统启动相关的特定目录（除了 `/boot`） **必须** 与 `/` 在同一个分区，或在系统刚进入用户态的时候通过 [initramfs](/index.php/Initramfs "Initramfs") 挂载。这些特定的目录包括：`/etc` 和 `/usr` [[1]](http://freedesktop.org/wiki/Software/systemd/separate-usr-is-broken) 。

因为包括 `/usr` 目录，根据安装的软件数量，会产生非常明显的增长。15-20 GB 对于大多数用户来说是一个比较合适的取值。如果你打算在这里放一个交换文件（swap file）的话，需要适当调大取值

#### /boot

`/boot` 分区包含内核、ramdisk 镜像以及 bootloader 配置文件和 bootloader stage。它也可以存放内核在执行用户态程序之前所使用的其他数据。`/boot` 在日常系统运行中并不需要，只在启动和内核升级（包括重建initial ramdisk）的时候用到。

如果使用软RAID0（条带化）系统的话，必须有一个独立的 `/boot` 分区。

**Note:** 如果使用 UEFI 启动管理器，支持读取 ESP 文件系统，建议将 [ESP](/index.php/ESP "ESP") 挂载到 `/boot`.

不使用 [UEFI](/index.php/UEFI "UEFI") 时，`/boot` 的建议大小时 200 MB，使用 UEFI 时，需要至少 512 MiB 空间。

#### /home

`/home`目录包含用户定义的配置文件、缓存、应用程序数据和媒体文件。

将`/home`目录独立使得`/`分区可以单独重新划分，但是请注意你可以在 `/home` 没有独立分区的情况下你仍然可以在不修改 `/home` 目录内容的情况下重装 Arch —— 删除其他顶级目录，然后执行pacstrap。

不能与使用其他发行版的用户共享同一个home目录，因为不同的发行版可能使用不兼容的软件版本和补丁。可以共享媒体目录，或至少使用 `/home` 分区下的不同home目录。分区大小跟着存储的内容而定。

#### /var

`/var` 目录存储变量数据例如 spool 目录和文件，管理和登录数据，[pacman](/index.php/Pacman "Pacman") 的缓存，[ABS](/index.php/ABS "ABS") 树等等。它通常被用作缓存或者日志记录，因此读写频繁。将它独立出来可以避免由于大量日志写入造成的磁盘空间耗尽等问题。

可以将 `/usr` 设置为只读挂载。所有在操作系统运行过程中（例如安装或软件维护）写入 `/usr` 的东西放到 `/var` 下。

**注意:** `/var`包含许多小文件。如果将其作为独立分区，在文件系统的选择上需要考虑这一点。

除了其他数据以外，还包括[ABS](/index.php/ABS "ABS") 树和 [pacman](/index.php/Pacman "Pacman") 缓存。保留缓存的包提供了包[降级](/index.php/Downgrade "Downgrade")的能力，因此非常有用。也正因为这样，`/var` 的大小会随着时间推移而增长。尤其是 pacman 缓存将会随着新软件的安装、系统的升级而增长。在磁盘空间不足的时候，可以安全的清理这个目录。`/var` 分配 8-12 GB 对于桌面系统来说是比较合适的取值，具体取值取决于安装的软件数量。。

#### /tmp

默认情况下这个目录已经是一个独立分区，systemd 将其挂载为*tmpfs*。

#### Swap

[swap](/index.php/Swap "Swap") 分区提供能够被作为虚拟内存的内存空间。[swap file](/index.php/Swap#Swap_file "Swap") 也可以实现同样的功能，并且它们之间没有明显的性能区别，但是后者更易于根据需要调整大小。如果没有使用休眠特性的话，swap 分区*可以*被多个系统共享。查看 [Suspend and hibernate](/index.php/Suspend_and_hibernate "Suspend and hibernate") 了解如何通过 swap 分区或文件休眠。

在拥有不足 512 MB 内存的机器上，通常为 swap 分区分配2倍内存大小的空间。如果有更大的内存（大于 1024 MB），可以分配较少的空间甚至不需要swap 分区。 [Suspend and hibernate](/index.php/Suspend_and_hibernate "Suspend and hibernate") 介绍了如何休眠到 swap 分区或文件.

#### /data

可以为需要多用户共享的文件建立一个“data”分区。也可以使用 `/home` 分区用于这一目的。

### 布局示例

**Note:** UEFI/GPT does not really have a "bootable" flag. A bootable partition simply has partition type `EF00`. Some GPT partitioning tools include a bootable flag, but really it just sets the partition type.

#### UEFI/GPT 示例

| Mount point | Partition | [Partition type (GUID)](https://en.wikipedia.org/wiki/GUID_Partition_Table#Partition_type_GUIDs "w:GUID Partition Table") | Bootable flag | Suggested size |
| /boot | /dev/sd**x**1 | [EFI system partition](/index.php/EFI_system_partition "EFI system partition") | Yes | 260–512 MiB |
| [SWAP] | /dev/sd**x**2 | Linux [swap](/index.php/Swap "Swap") | No | More than 512 MiB |
| / | /dev/sd**x**3 | Linux | No | Remainder of the device |

#### MBR/BIOS 示例

| Mount point | Partition | [Partition type](https://en.wikipedia.org/wiki/Partition_type "w:Partition type") | Bootable flag | Suggested size |
| [SWAP] | /dev/sd**x**1 | Linux [swap](/index.php/Swap "Swap") | No | More than 512 MiB |
| / | /dev/sd**x**2 | Linux | Yes | Remainder of the device |

#### UEFI 带单独的 /home

| Mount point | Partition | [Partition type (GUID)](https://en.wikipedia.org/wiki/GUID_Partition_Table#Partition_type_GUIDs "w:GUID Partition Table") | Bootable flag | Suggested size |
| /boot | /dev/sd**x**1 | [EFI system partition](/index.php/EFI_system_partition "EFI system partition") | Yes | More than 512 MiB |
| / | /dev/sd**x**2 | Linux | No | 15 - 20 GiB |
| [SWAP] | /dev/sd**x**3 | Linux [swap](/index.php/Swap "Swap") | No | More than 512 MiB |
| /home | /dev/sd**x**4 | Linux | No | Remainder of the device |

## 分区工具

下面表格可以帮助选择

 MBR | GPT |
| 对话框 | fdisk
parted | fdisk
gdisk
parted |
| 模拟图形界面 | cfdisk | cfdisk
cgdisk |
| 非交互 | sfdisk
parted | sfdisk
sgdisk
parted |
| 图形界面 | gparted
gnome-disk-utility
partitionmanager | gparted
gnome-disk-utility
partitionmanager |

### fdisk/gdisk

请参考 [fdisk](/index.php/Fdisk "Fdisk")。

*   **[fdisk](/index.php/Fdisk "Fdisk")** — Linux 自带的命令行分区工具。

	[https://www.kernel.org/](https://www.kernel.org/) || [util-linux](https://www.archlinux.org/packages/?name=util-linux)

*   **[cfdisk](/index.php/Cfdisk "Cfdisk")** — 使用 ncurses 库编写的具有伪图形界面的命令行分区工具。

	[https://www.kernel.org/](https://www.kernel.org/) || [util-linux](https://www.archlinux.org/packages/?name=util-linux)

*   **[sfdisk](/index.php/Sfdisk "Sfdisk")** — 支持脚本的 fdisk.

	[https://www.kernel.org/pub/linux/utils/util-linux/](https://www.kernel.org/pub/linux/utils/util-linux/) || [util-linux](https://www.archlinux.org/packages/?name=util-linux)

*   **[gdisk](/index.php/Gdisk "Gdisk")** — [GPT](/index.php/GPT "GPT") 版的 fdisk。

	[http://www.rodsbooks.com/gdisk/](http://www.rodsbooks.com/gdisk/) || [gptfdisk](https://www.archlinux.org/packages/?name=gptfdisk)

*   **[cgdisk](/index.php/Cgdisk "Cgdisk")** — GPT 版的 cfdisk。

	[http://www.rodsbooks.com/gdisk/](http://www.rodsbooks.com/gdisk/) || [gptfdisk](https://www.archlinux.org/packages/?name=gptfdisk)

*   **[sgdisk](/index.php/Sgdisk "Sgdisk")** — Scriptable version of gdisk.

	[http://www.rodsbooks.com/gdisk/sgdisk-walkthrough.html](http://www.rodsbooks.com/gdisk/sgdisk-walkthrough.html) || [gptfdisk](https://www.archlinux.org/packages/?name=gptfdisk)

### GNU Parted

下面工具在 [GNU Parted](/index.php/GNU_Parted "GNU Parted") 中有介绍。

*   **[GNU Parted](/index.php/GNU_Parted "GNU Parted")** — 命令行分区工具。

	[http://www.gnu.org/software/parted/parted.html](http://www.gnu.org/software/parted/parted.html) || [parted](https://www.archlinux.org/packages/?name=parted)

*   **[GParted](/index.php/GParted "GParted")** — GTK 图形界面的分区工具。

	[http://gparted.sourceforge.net/](http://gparted.sourceforge.net/) || [gparted](https://www.archlinux.org/packages/?name=gparted)

*   **GNOME Disks** — GTK 写的图形分区工具.

	[https://wiki.gnome.org/Apps/Disks](https://wiki.gnome.org/Apps/Disks) || [gnome-disk-utility](https://www.archlinux.org/packages/?name=gnome-disk-utility)

*   **Partitionmanager** — QT 图形界面的分区工具。

	[http://sourceforge.net/projects/partitionman/](http://sourceforge.net/projects/partitionman/) || [partitionmanager](https://www.archlinux.org/packages/?name=partitionmanager)

## 分区对齐

恰当的分区对齐有助于提升性能和使用寿命。这是由硬件层面和文件系统层面的每次[块](https://en.wikipedia.org/wiki/Block_(data_storage) "w:Block (data storage)") I/O 操作特性决定的。对齐的关健是分区大小（至少）是*块大小*的倍数，*块大小*取决于选用的硬件设备。如果分区没有以*块大小*的整数倍对齐，对齐文件系统就失去意义了，因为从分区的起始偏移开始就是有偏差的。

[fdisk/gdisk](/index.php/Fdisk "Fdisk") 和 [parted](/index.php/Parted#Alignment "Parted") 会自动处理分区对齐。[GNU Parted#Check alignment](/index.php/GNU_Parted#Check_alignment "GNU Parted") 介绍了如何验证分区是否对齐。

有些硬盘使用 [高级格式](/index.php/Advanced_Format "Advanced Format") 会提供更好的读写效率。

## Tips and tricks

#### Converting MBR to GPT

See [fdisk#Convert between MBR and GPT](/index.php/Fdisk#Convert_between_MBR_and_GPT "Fdisk").

#### GPT Kernel Support

The `CONFIG_EFI_PARTITION` option in the kernel config enables GPT support in the kernel (despite the name, EFI PARTITION). This option must be built in the kernel and not compiled as a loadable module. This option is required even if GPT disks are used only for data storage and not for booting. This option is enabled by default in Arch's [linux](https://www.archlinux.org/packages/?name=linux) and [linux-lts](https://www.archlinux.org/packages/?name=linux-lts) kernels in the [core] repo. In case of a custom kernel, enable this option by doing `CONFIG_EFI_PARTITION=y`.

## 参考资料

*   [Wikipedia:Disk partitioning](https://en.wikipedia.org/wiki/Disk_partitioning "wikipedia:Disk partitioning")
*   [Wikipedia:Binary prefix](https://en.wikipedia.org/wiki/Binary_prefix "wikipedia:Binary prefix")
*   [Understanding Disk Drive Terminology](http://thestarman.pcministry.com/asm/mbr/DiskTerms.htm)
*   [What is a Master Boot Record (MBR)?](http://kb.iu.edu/data/aijw.html)
*   Rod Smith's page on [What's a GPT?](http://www.rodsbooks.com/gdisk/whatsgpt.html) and [Booting OSes from GPT](http://rodsbooks.com/gdisk/booting.html)
*   [Make the most of large drives with GPT and Linux - IBM Developer Works](http://www.ibm.com/developerworks/linux/library/l-gpt/index.html?ca=dgr-lnxw07GPT-Storagedth-lx&S_TACT=105AGY83&S_CMP=grlnxw07)
*   [Microsoft's Windows and GPT FAQ](http://www.microsoft.com/whdc/device/storage/GPT_FAQ.mspx)
*   [Partition Alignment](http://www.thomas-krenn.com/en/wiki/Partition_Alignment) (with examples)